type net/http.http2ErrCode
42 uses
net/http (current package)
h2_bundle.go#L1177: type http2ErrCode uint32
h2_bundle.go#L1180: http2ErrCodeNo http2ErrCode = 0x0
h2_bundle.go#L1181: http2ErrCodeProtocol http2ErrCode = 0x1
h2_bundle.go#L1182: http2ErrCodeInternal http2ErrCode = 0x2
h2_bundle.go#L1183: http2ErrCodeFlowControl http2ErrCode = 0x3
h2_bundle.go#L1184: http2ErrCodeSettingsTimeout http2ErrCode = 0x4
h2_bundle.go#L1185: http2ErrCodeStreamClosed http2ErrCode = 0x5
h2_bundle.go#L1186: http2ErrCodeFrameSize http2ErrCode = 0x6
h2_bundle.go#L1187: http2ErrCodeRefusedStream http2ErrCode = 0x7
h2_bundle.go#L1188: http2ErrCodeCancel http2ErrCode = 0x8
h2_bundle.go#L1189: http2ErrCodeCompression http2ErrCode = 0x9
h2_bundle.go#L1190: http2ErrCodeConnect http2ErrCode = 0xa
h2_bundle.go#L1191: http2ErrCodeEnhanceYourCalm http2ErrCode = 0xb
h2_bundle.go#L1192: http2ErrCodeInadequateSecurity http2ErrCode = 0xc
h2_bundle.go#L1193: http2ErrCodeHTTP11Required http2ErrCode = 0xd
h2_bundle.go#L1196: var http2errCodeName = map[http2ErrCode]string{
h2_bundle.go#L1213: func (e http2ErrCode) String() string {
h2_bundle.go#L1220: func (e http2ErrCode) stringToken() string {
h2_bundle.go#L1229: type http2ConnectionError http2ErrCode
h2_bundle.go#L1232: return fmt.Sprintf("connection error: %s", http2ErrCode(e))
h2_bundle.go#L1239: Code http2ErrCode
h2_bundle.go#L1248: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1276: Code http2ErrCode // the ConnectionError error code
h2_bundle.go#L1943: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
h2_bundle.go#L2297: ErrCode http2ErrCode
h2_bundle.go#L2322: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2327: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
h2_bundle.go#L2619: ErrCode http2ErrCode
h2_bundle.go#L2631: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L2638: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
h2_bundle.go#L4414: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
h2_bundle.go#L4471: goAwayCode http2ErrCode
h2_bundle.go#L5289: func (sc *http2serverConn) goAway(code http2ErrCode) {
h2_bundle.go#L5364: sc.goAway(http2ErrCode(ev))
h2_bundle.go#L7144: var code http2ErrCode
h2_bundle.go#L7148: code = http2ErrCode(e)
h2_bundle.go#L7151: code = http2ErrCode(e.Code)
h2_bundle.go#L9395: cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
h2_bundle.go#L9404: ErrCode http2ErrCode
h2_bundle.go#L9468: errCode := http2ErrCode(ce)
h2_bundle.go#L10248: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, err error) {
h2_bundle.go#L10548: code http2ErrCode
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |